home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / AMOSList / AMOSLIST / text0147.txt < prev    next >
Encoding:
Text File  |  1998-05-09  |  3.7 KB  |  73 lines

  1. On 21-Apr-98, Andy Kellett smashed the keyboard with:
  2. >> I don't have a gfx card and really don't know what each screen mode
  3. >> does and what compatabilities there are etc.etc. so I need someones
  4. >> help who knows about them.
  5. >> Now that Backbone works with the GUI extension, I added an option to
  6. >> run it on any screen mode. It's normally run on either Hires or
  7. >> Hires+Laced.
  8. >> I have a user who uses DBL Pal 640x512 screen for Backbone.
  9. >> Now what Backbone does is to open another screen on top of it for
  10. >> displaying various amos graphics when it needs too. This way, the
  11. >> original screen can be any resolution and I can open the correct
  12. >> resolution screen for GFX.
  13. >> Normally this is OK because a Lowres 32 colour screen displayed on a
  14. >> Hires+Laced 4 colour screen is fine but apparently if the screen is
  15. >> DBL Pal something goes wrong and the lowres screen forces the other
  16. >> one to change resolution.
  17. >> I'm afraid the user isn't a programmer and hasn't done a good job of
  18. >> explaining what exactly happens to me so I really don't know what to
  19. >> do.
  20. >> I'd imagine I'd have to make the lowres screen into some different
  21. >> resolution (DBL Pal lowres?) but I'm hoping someone does know how it
  22. >> works and can solve it for me
  23. > I had a bug report a couple of weeks back (I also sent it to the list)
  24. > saying that the Gui Clone command caused problems with Gfx cards and Gui
  25. > Clone.
  26. > The screenmode itself should be OK, i use a Multiscan:Productivity
  27. > screenmode with my Mailinglist software, and all is OK with just a regular
  28. > GUI.
  29. > To solve it, I have no idea other than to bring the other screen into the
  30. > same ModeID as the main screen.
  31.  
  32. And that just what you have to do, I had the same problem with my editor for
  33. AlienBreed3DII when I moved it to public screens, the only difference was
  34. that I used the OSDevKit to move it. I wanted to give the user an option
  35. to select screenmode, but I also had to open some aditional screens in 
  36. another resolution (main-screen was hires+laced as standard) for some
  37. graphic convertions... Anyway, you need to grab the viewmode of the 'main'
  38. screen (or let the user pick one) then do a 
  39. "SCR_MODE and $FFFF0000" to obtain the 'Monitor ID' and use an "OR" to 
  40. set the resolution you'd like the other screen to use, then it should 
  41. open on the same ViewPort (unless you specify the 'own-view-port' tag
  42. when opening the screen, but I don't think you can do that with GUI)..
  43.  
  44. An easier way could be to attach the second screen as a 'child' screen to
  45. the main, but I don't think that can be done with the 'GUI' extension..
  46. -- 
  47. Kind regards from
  48. ________________________________________________________________________________
  49.  /     /     /     /\     \     \     \             \ /                     \ /
  50.  \__  _\  __ \  __ \/ ____/ __  /_  __/             +O-----------------------O+
  51.    / / / / / /     /\ \   \     \ \ \               | aka. JENS VANG PETERSEN |
  52.    \ \ \ \_\ \  ___\/ /___/ __  / / /               | (top_cat@post8.tele.dk) |
  53.    / / /     / /    \     \ \ \ \ \ \               +-------------------------+
  54.    \_\ \_____\_\    /_____/_/ /_/ /_/
  55. --------------------------------------------------------------------------------
  56.  -++-  AMIGA  -++-  SOFTWARE  -++-  AMOS  -++-  AQUA  -++-  STAR TREK TNG  -++-
  57.  Main Page:                                'http://home8.inet.tele.dk/top_cat/'
  58.  The AQUA Zone:                    'http://www.netby.net/Havnen/Lystbaade/taz/'
  59.  The Cosmic String:       'http://www.fortunecity.com/tattooine/pratchett/166/'
  60. --------------------------------------------------------------------------------
  61.   God is real, unless declared integer.
  62. --------------------------------------------------------------------------------
  63.  
  64.  
  65.